home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / a-nuranu.ads < prev    next >
Text File  |  1994-05-19  |  3KB  |  64 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                  A D A . N U M E R I C S _ R A N D O M                   --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  with Ada.Finalization; use Ada.Finalization;
  26. package Ada.Numerics.Random_Numbers is
  27.  
  28.    pragma Elaborate_Body;
  29.  
  30.    type Generator is limited private;
  31.    --  subtype Uniformly_Distributed is Float range 0.0 .. 1.0;
  32.    subtype Uniformly_Distributed is Float;
  33.  
  34.    function Random (Gen : Generator) return Uniformly_Distributed;
  35.    function Random_Integer (Gen       : Generator;
  36.                             Low, High : Integer) return Integer;
  37.  
  38.    procedure Reset (Gen       : in Generator;
  39.                     Initiator : in Integer);
  40.    procedure Reset (Gen       : in Generator);
  41.  
  42. private
  43.  
  44.    Larger_Lag  : constant := 25;
  45.    Smaller_Lag : constant := 11;
  46.    type Lag_Range is mod Larger_Lag;
  47.    type State_Vector is array (Lag_Range) of Float;
  48.    type Internal_State is
  49.       record
  50.          Lagged_Outputs : State_Vector;
  51.          Borrow         : Float;
  52.          R, S           : Lag_Range;
  53.       end record;
  54.    type Access_State is access Internal_State;
  55.    Initial_State : Internal_State;
  56.    type Generator is
  57.       --  new Limited_Controlled with
  58.       record
  59.          State : Access_State := new Internal_State'(Initial_State);
  60.       end record;
  61.    --  procedure Finalize (Gen : in out Generator);
  62.  
  63. end Ada.Numerics.Random_Numbers;
  64.